home *** CD-ROM | disk | FTP | other *** search
/ NOVA - For the NeXT Workstation / NOVA - For the NeXT Workstation.iso / Apps / Utilities / Unix / CommandMon / Indicator.h < prev    next >
Text File  |  1992-12-26  |  264b  |  17 lines

  1. /* by Jason Beaver */
  2.  
  3. #import <objc/Object.h>
  4. #import <dpsclient/dpsclient.h>
  5. #import <appkit/View.h>
  6.  
  7. @interface Indicator:View
  8. {
  9.     BOOL on;
  10.     DPSTimedEntry timer;
  11. }
  12. - initFrame:(NXRect *)frameRect;
  13. - drawSelf:(NXRect *)rects :(int)count;
  14. - flash;
  15. - turnOff;
  16. @end
  17.